home *** CD-ROM | disk | FTP | other *** search
/ Ian & Stuart's Australian Mac: Not for Sale / Another.not.for.sale (Australia).iso / fade into you / getting there / Apps / MOO-1.7.6.src / inc / my-stdarg.h < prev    next >
Text File  |  1994-11-02  |  2KB  |  71 lines

  1. /******************************************************************************
  2.   Copyright (c) 1992 Xerox Corporation.  All rights reserved.
  3.   Portions of this code were written by Stephen White, aka ghond.
  4.   Use and copying of this software and preparation of derivative works based
  5.   upon this software are permitted.  Any distribution of this software or
  6.   derivative works must comply with all applicable United States export
  7.   control laws.  This software is made available AS IS, and Xerox Corporation
  8.   makes no warranty about the software, its performance or its conformity to
  9.   any specification.  Any person obtaining a copy of this software is requested
  10.   to send their name and post office or electronic mail address to:
  11.     Pavel Curtis
  12.     Xerox PARC
  13.     3333 Coyote Hill Rd.
  14.     Palo Alto, CA 94304
  15.     Pavel@Xerox.Com
  16.  *****************************************************************************/
  17.  
  18. #include "config.h"
  19.  
  20. /* The server no longer uses variable-length argument lists of large (size > 8
  21.  * bytes) structures, so this code is no longer needed and BUGGY_STDARG is
  22.  * never defined in config.h.  I've left the code here for possible future use.
  23.  */
  24.  
  25. #if BUGGY_STDARG
  26.  
  27. /*
  28.  * This implementation of the stdarg.h stuff is very simplistic; it ignores all
  29.  * promotion and alignment issues.  This is good enough for LambdaMOO's uses on
  30.  * most machines.  Regardless, this implementation should not be used unless
  31.  * the one on your machine won't work.
  32.  */
  33.  
  34. #ifndef STDARG_H
  35. #define STDARG_H 1
  36.  
  37. #ifndef _VA_LIST_
  38. #define _VA_LIST_ 1
  39. typedef void   *va_list;
  40. #endif
  41.  
  42. #define va_start(ptr, arg) \
  43.         (ptr = (void *) ((unsigned) &arg + sizeof(arg)))
  44.  
  45. #define va_arg(ptr, type) \
  46.         ((type *) (ptr = (void *) ((unsigned) ptr + sizeof(type))))[-1]
  47.  
  48. #define va_end(ptr)
  49.  
  50. #endif /* STDARG_H */
  51.  
  52. #else
  53.  
  54. #include <stdarg.h>
  55.  
  56. #endif /* BUGGY_STDARG */
  57.  
  58. /* $Log: my-stdarg.h,v $
  59.  * Revision 1.4  1992/10/23  23:03:47  pavel
  60.  * Added copyright notice.
  61.  *
  62.  * Revision 1.3  1992/10/21  03:02:35  pavel
  63.  * Converted to use new automatic configuration system.
  64.  *
  65.  * Revision 1.2  1992/09/22  22:47:15  pavel
  66.  * Added missing #include of "config.h".
  67.  *
  68.  * Revision 1.1  1992/07/20  23:23:12  pavel
  69.  * Initial RCS-controlled version.
  70.  */
  71.